runtime.mcache.nextSample (field)

15 uses

	runtime (current package)
		arena.go#L802: 		if rate != 1 && int64(userArenaChunkBytes) < c.nextSample {
		arena.go#L803: 			c.nextSample -= int64(userArenaChunkBytes)
		malloc.go#L1223: 	c.nextSample -= int64(span.elemsize)
		malloc.go#L1224: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1325: 	c.nextSample -= int64(size)
		malloc.go#L1326: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1416: 	c.nextSample -= int64(size)
		malloc.go#L1417: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1509: 	c.nextSample -= int64(size)
		malloc.go#L1510: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1582: 	c.nextSample -= int64(size)
		malloc.go#L1583: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1801: 	c.nextSample = nextSample()
		mcache.go#L24: 	nextSample  int64   // trigger heap sample after allocating this many bytes
		mcache.go#L97: 	c.nextSample = nextSample()